home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo off
- cls
- echo ╔═───────────────────────────────────────═╗
- echo │ ·■· WComp installation batch program ·■·│
- echo ╚═───────────────────────────────────────═╝
- echo.
-
- echo By using the WCOMP package you agree with the license agreement.
- echo Press Ctrl-C to abort this installation batch file, or
- pause
-
- echo.
- echo Copying WComp.Ini , WComp.Ext to C:\
- echo.
- copy wcomp.ini c:\>nul
- copy wcomp.ext c:\>nul
- Ask 1) Italian Documentation 2) English Documentation (1/2) :
- if errorlevel == 50 goto inglese
- if errorlevel == 49 goto italiano
- echo 1/2 accepted. Abort
- goto end
-
- :italiano
- del engdoc.exe>nul
- itadoc.exe
- del itadoc.exe>nul
- goto fine
-
- :inglese
- del itadoc.exe>nul
- engdoc.exe
- del engdoc.exe>nul
- goto fine
-
-
- :fine
- cls
- echo.
- echo ╔═───────────────────────────────═╗
- echo │ ·■· WComp Integrity Checking ·■·│
- echo ╚═───────────────────────────────═╝
- echo.
- wcheck
- echo.
- echo ·──══ To start using WComp write 'wcomp' ══──·
- echo ░▒▓ Enjoy! ░▒▓
-
- :end
-